home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / utility / isthere.zip / SPACE.BAT < prev   
DOS Batch File  |  1992-05-02  |  306b  |  18 lines

  1. @echo off
  2. echo -- executing: isthere %1 %2
  3. isthere %1 %2
  4. if errorlevel == 2 goto baderror
  5. if errorlevel == 1 goto nospace
  6.  
  7. echo -- There was enough space!
  8. goto end
  9.  
  10. :nospace
  11. echo -- There was not enough space!
  12. goto end
  13.  
  14. :baderror
  15. echo -- Syntax error, bad drive or drive not ready.
  16.  
  17. :end
  18.